home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
misc
/
sci
/
MathPlot.lha
/
MathPlot
/
Macros
/
testrx.rexx
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1993-08-08
|
374 b
|
21 lines
/* ARexx Skript zum Testen des ARexxBox-Tests :-) */
address 'MPlot_ARexx'
options results
/* welche Befehle gibt's denn so? */
help stem a.
/*
This would give a simple list of all commands
do i=0 to a.commandlist.count-1
say a.commandlist.i
end
*/
do i=0 to a.commandlist.count-1
help a.commandlist.i var hilfe
say hilfe
drop hilfe /* This drop is needed ! */
end